home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / CURRT.CC < prev    next >
Text File  |  1993-04-04  |  337b  |  15 lines

  1. #include <dos.h>
  2. cur_rt()
  3. /* Move the cursor one col to the right */
  4. {
  5.         int cur_row, cur_col;
  6.         get_cur(&cur_row,&cur_col);
  7.         cur_col++;
  8.         if(cur_col>79) {
  9.                 cur_row++;
  10.                 cur_col=1;
  11.                 if(cur_row>24) cur_row=1;
  12.         }
  13.         locate(cur_row,cur_col);
  14. }
  15.